/* ============================================================
   SETAS DE SCROLL HORIZONTAL
   ============================================================ */
.scroll-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-scroll {
    background: #0a0f18;
    border: 1px solid #ffaa33;
    color: #ffaa33;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-scroll:hover:not(:disabled) {
    background: #ffaa33;
    color: #0a0f18;
    transform: scale(1.05);
}

.btn-scroll:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}